home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 5 / Gold Medal Software - Volume 5 (Gold Medal) (1995).iso / database / cff51b.arj / EMX.MAK < prev    next >
Makefile  |  1993-10-22  |  1KB  |  58 lines

  1. # Makefile for the cff test programs using emx method E1
  2. # assumes that ../ports/cfport.o was compiled with emx
  3.  
  4. CC = gcc -O2 -m486 -Wall
  5. LIB = ../ports/cfport.o ../libs/libcff.a
  6.  
  7. all:    hashtest pushtest permtest copytest treefile filetest \
  8.         misctest blobtest datatest seqtest duptest treetest
  9.  
  10. filetest:    filetest.c $(LIB)
  11.             $(CC) -o filetest filetest.c $(LIB)
  12.             emxbind   filetest   -ac
  13.  
  14. treefile:    treefile.c $(LIB)
  15.             $(CC) -o treefile treefile.c $(LIB)
  16.             emxbind   treefile   -ac
  17.  
  18. treetest:    treetest.c $(LIB)
  19.             $(CC) -o treetest treetest.c $(LIB)
  20.             emxbind   treetest   -ac
  21.  
  22. hashtest:    hashtest.c $(LIB)
  23.             $(CC) -o hashtest hashtest.c $(LIB)
  24.             emxbind   hashtest   -ac
  25.  
  26. duptest:    duptest.c $(LIB)
  27.             $(CC) -o duptest duptest.c $(LIB)
  28.             emxbind   duptest   -ac
  29.  
  30. pushtest:    pushtest.c $(LIB)
  31.             $(CC) -o pushtest pushtest.c $(LIB)
  32.             emxbind   pushtest   -ac
  33.  
  34. datatest:    datatest.c $(LIB)
  35.             $(CC) -o datatest datatest.c $(LIB)
  36.             emxbind   datatest   -ac
  37.  
  38. blobtest:    blobtest.c $(LIB)
  39.             $(CC) -o blobtest blobtest.c $(LIB)
  40.             emxbind   blobtest   -ac
  41.  
  42. permtest:    permtest.c $(LIB)
  43.             $(CC) -o permtest permtest.c $(LIB)
  44.             emxbind   permtest   -ac
  45.  
  46. misctest:    misctest.c $(LIB)
  47.             $(CC) -o misctest misctest.c $(LIB)
  48.             emxbind   misctest   -ac
  49.  
  50. copytest:    copytest.c $(LIB)
  51.             $(CC) -o copytest copytest.c $(LIB)
  52.             emxbind   copytest   -ac
  53.  
  54. seqtest:    seqtest.c $(LIB)
  55.             $(CC) -o seqtest seqtest.c $(LIB)
  56.             emxbind   seqtest   -ac
  57.  
  58.